/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.pamphlet-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #e53935 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pamphlet-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5%);
    }
    100% {
        transform: translateX(0);
    }
}

.pamphlet-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.pamphlet-header .subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.breadcrumb {
    position: relative;
    margin-top: 10px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.pamphlet-header a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pamphlet-header a:hover {
    opacity: 1;
}

.pamphlet-header a i {
    margin-right: 5px;
}

/* Main Content */
.main-content {
    padding: 20px 0;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #1a237e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Section Headers */
.section-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8eaf6;
}

.section-header h2 {
    color: #1a237e;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.section-header h2 i {
    color: #e53935;
}

.section-subtitle {
    text-align: center  ;
    color: #666;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 400;
}

/* Lead Text */
.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Support List */
.support-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f5f7ff;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.support-item:hover {
    background: #e8eaf6;
}

.check-icon {
    color: #4CAF50;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.support-item span {
    font-size: 16px;
    color: #333;
}

/* API Grid */
.api-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.api-category {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8eaf6 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.api-category:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
}

.api-category:hover h3 {
    color: white;
}

.api-category:hover .api-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.api-category small {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
    transition: color 0.3s ease;
}

.api-category:hover small {
    color: rgba(255, 255, 255, 0.9);
}

.api-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #1a237e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.api-category h3 {
    color: #1a237e;
    font-size: 18px;
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

/* API Category Links */
.api-category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.api-category-link .api-category {
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.api-category-link:hover .api-category {
    transform: scale(1.05);
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
}

.api-category-link:hover .api-category h3 {
    color: white;
}

.api-category-link:hover .api-category .api-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.api-category-link:hover .api-category small {
    color: rgba(255, 255, 255, 0.9);
}

/* Coming Soon text for future pages */
.api-category .coming-soon {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
    transition: color 0.3s ease;
}

.api-category-link:hover .api-category .coming-soon {
    color: rgba(255, 255, 255, 0.8);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit-item {
    text-align: center;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.benefit-item h3 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 20px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Callout Box */
.callout-box {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    animation: pulse 2s infinite;
}

.callout-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.callout-box p {
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 0 0 20px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-us .section-title h2 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 15px;
    position: relative;
}

.why-choose-us .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #1a237e, #e53935);
}

.why-choose-us .section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-column {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #1a237e, #e53935);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a237e, #e53935);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    border-left: 5px solid #e53935;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-text h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-text h2 i {
    color: #e53935;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: #e53935;
    color: white;
}

.cta-btn.primary:hover {
    background: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.cta-btn.tertiary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.tertiary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.8);
    animation: float 3s ease-in-out infinite;
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #1a237e;
    font-weight: 600;
    font-size: 15px;
}

.form-group label i {
    color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
}

.checkbox-group label {
    font-weight: normal;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.2);
    background: linear-gradient(135deg, #283593 0%, #3949ab 100%);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    background: #e8eaf6;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.info-content h3 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.info-content strong {
    color: #333;
    font-weight: 600;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 400px;
    border-left: 5px solid #4CAF50;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left-color: #4CAF50;
}

.notification i {
    color: #4CAF50;
    font-size: 20px;
}

.notification span {
    flex: 1;
    color: #333;
}

.close-notification {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.close-notification:hover {
    color: #333;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .image-placeholder {
        margin-top: 30px;
    }
    
    .api-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 25px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .cta-text h2 {
        font-size: 26px;
    }
    
    .pamphlet-header {
        padding: 40px 0 30px;
    }
}

@media (max-width: 480px) {
    .pamphlet-header h1 {
        font-size: 32px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .callout-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}